home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
scope
/
001-025
/
scopedisk6
/
arexx
/
arexx1
/
join.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-18
|
315b
|
15 lines
/* join -- a 'front end' for join. Fixes a problem with join. */
parse arg x
temp = 'arexxtempfile'
do i=1 to (words(x)-1)
if word(x,i) = word(x,words(x)) then do
oops = word(x,words(x))
x = delword(x,words(x)) || temp
'c:join' x
'copy ' temp ' ' oops
'del' temp
exit
end
end
'c:join' x